home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / pc / files / sat / msat09.tgz / CRC.H < prev    next >
Text File  |  1994-09-17  |  331b  |  25 lines

  1. /*
  2.     crc.h
  3.  
  4.     CCITT CRC routines
  5.  
  6.     John Melton
  7.     G0ORX, N6LYT
  8.  
  9.     4 Charlwoods Close
  10.     Copthorne
  11.     West Sussex
  12.     RH10 3QZ
  13.     England
  14.  
  15.     INTERNET:    g0orx@amsat.org
  16.             n6lyt@amsat.org
  17.             john@images.demon.co.uk
  18.             J.D.Melton@slh0613.icl.wins.co.uk
  19.  
  20. */
  21.  
  22. #define CRCLENGTH 2
  23.  
  24. int CheckCRC(unsigned char *buf, int length);
  25.